From: Keir Fraser Date: Fri, 17 Sep 2010 15:44:00 +0000 (+0100) Subject: x86_32: Fix build by fixing prototype of hvmemul_do_pio(). X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11469 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=453bfd468f1f1db8764b8f282c375852dc1c77ab;p=xen.git x86_32: Fix build by fixing prototype of hvmemul_do_pio(). Signed-off-by: Keir Fraser --- diff --git a/xen/include/asm-x86/hvm/emulate.h b/xen/include/asm-x86/hvm/emulate.h index d579c02ddf..7ac8e79bbd 100644 --- a/xen/include/asm-x86/hvm/emulate.h +++ b/xen/include/asm-x86/hvm/emulate.h @@ -47,7 +47,7 @@ struct segment_register *hvmemul_get_seg_reg( struct hvm_emulate_ctxt *hvmemul_ctxt); int hvmemul_do_pio( - paddr_t addr, unsigned long *reps, int size, + unsigned long port, unsigned long *reps, int size, paddr_t ram_gpa, int dir, int df, void *p_data); #endif /* __ASM_X86_HVM_EMULATE_H__ */